home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / trendmicro_emanager.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  94 lines

  1. #
  2. # This script was written by John Lampe...j_lampe@bellsouth.net 
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(11747);
  10.  script_bugtraq_id(3327);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CAN-2001-0958");
  13.  
  14.  
  15.  name["english"] = "TrendMicro Emanager software check";
  16.  name["francais"] = "TrendMicro Emanager software check";
  17.  script_name(english:name["english"], francais:name["francais"]);
  18.  
  19.  desc["english"] = "
  20. The TrendMicro Emanager software resides on this server.
  21. Some versions of this software have vulnerable dlls.  If vulnerable, 
  22. remote exploit is possible.  For more info, visit:
  23. http://www.securityfocus.com/bid/3327
  24.  
  25. Solution : Remove this CGI or upgrade to the latest version of this software
  26. Risk factor : Medium";
  27.  
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "Check for certain TrendMicro dlls";
  32.  
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_ATTACK); 
  36.  
  37.  
  38.  script_copyright(english:"This script is Copyright (C) 2003 John Lampe",
  39.         francais:"Ce script est Copyright (C) 2003 John Lampe");
  40.  family["english"] = "CGI abuses";
  41.  family["francais"] = "Abus de CGI";
  42.  script_family(english:family["english"], francais:family["francais"]);
  43.  script_dependencie("find_service.nes", "no404.nasl");
  44.  script_require_ports("Services/www", 80);
  45.  exit(0);
  46. }
  47.  
  48. #
  49. # The script code starts here
  50. #
  51.  
  52. include("http_func.inc");
  53. include("http_keepalive.inc");
  54.  
  55. port = get_http_port(default:80);
  56.  
  57. if(!get_port_state(port))exit(0);
  58.  
  59. flag = flag2 = 0;
  60. directory = "";
  61.  
  62. file[0] = "register.dll";
  63. #file[1] = "ContentFilter.dll";
  64. #file[2] = "SFNofitication.dll";
  65. #file[3] = "TOP10.dll";
  66. #file[4] = "SpamExcp.dll";
  67. #file[5] = "spamrule.dll";
  68.  
  69. for (i=0; file[i]; i = i + 1) {
  70. foreach dir (cgi_dirs()) {
  71.    if ( "eManager" >< dir )  flag2 = 1;
  72.    if(is_cgi_installed_ka(item:string(dir, "/", file[i]), port:port)) {
  73.       flag = 1;
  74.       directory = dir;
  75.       break;
  76.    } 
  77. }
  78. }
  79.  
  80. if ( (! flag2) && (! flag) )  {
  81.     dirs[0] = "/eManager/Email%20Management/";
  82.     dirs[1] = "/eManager/Content%20Management/";
  83.         for (i=0; dirs[i]; i = i + 1) {
  84.         for (q=0; file[q] ; q = q + 1) {
  85.             if(is_cgi_installed_ka(item:string(dirs[i], file[q]) , port:port)) {
  86.                 security_note(port);
  87.                 exit(0);
  88.             }
  89.            }
  90.     }    
  91.  }
  92.  
  93. if (flag) security_note (port);
  94.